所有参考资料贴在最后。
1. 介绍
在线试验场
Composer Playground
2. 创建新business network
3. 链接business network
- About文件 – Markdown格式的说明文件,试验场默认将显示该文件的内容。
- Access Control List – 决定了哪些参与者可以看到哪些资产。
- Add按钮 – 必要时可向项目中添加额外的文件。
- Deploy按钮 – 可将对项目文件的改动应用给当前已连接的区块链实例或模拟器。
- Import功能可将试验场的内容替换为指定的其他内容。
- Export功能可将整个解决方案打包为一个文件,并转移到其他环境中使用。
界面右侧的主区域显示了所选文件的编辑器或查看器。此外页面顶部的Define/Test选项卡可供我们在开发或测试模式之间切换。最后,页面右上角可供我们(在本地版本中)模拟另一个区块链用户的身份,连接至自己的线上区块链实例,或开始在Web浏览器中模拟。在线版试验场目前仅支持模拟器模式。^foot1
4. 添加一个model file
Model files define the assets, participants, transactions, and events in our business network.
- Model文件 – 定义了项目中涉及的资产、参与者,以及事务。
1 | /*This domain model defines a single asset type Commodity and single participant type Trader and a single transaction type Trade that is used to modify the owner of a commodity.*/ |
5. 添加transaction processor script file
define the transaction logic for the business network.
- Script文件 – 以JavaScript实现的事务逻辑。
1 | /** |
This function simply changes the owner property on a commodity based on the newOwner property on an incoming Trade transaction. It then persists the modified Commodity back into the asset registry, used to store Commodity instances.
6. Access control
define the access control rules for business networks.
7. 发布已更新的business network
8. 测试business network定义
9. 创建participants
10. 创建asset
11. 在participants间交易commodity
1 | { |